diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-06-06 12:55:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-06-06 12:55:46 +0000 |
commit | 601d294296e1de9fc423700db00bccc04a2bf50d (patch) | |
tree | 1d274eb4e512431b042e07bf8f8ff4a980407257 /localedata/locales/translit_cjk_compat | |
parent | 9a1f675436c5622b7846faa25274a2ef2d743285 (diff) | |
download | glibc-601d294296e1de9fc423700db00bccc04a2bf50d.tar.gz glibc-601d294296e1de9fc423700db00bccc04a2bf50d.tar.xz glibc-601d294296e1de9fc423700db00bccc04a2bf50d.zip |
Update.
2001-06-04 Bruno Haible <haible@clisp.cons.org> * iconv/loop.c (UNICODE_TAG_HANDLER): New macro. * iconv/gconv_simple.c (__gconv_transform_internal_ascii): Invoke UNICODE_TAG_HANDLER. (__gconv_transform_internal_ucs2): Likewise. (__gconv_transform_internal_ucs2reverse): Likewise. * iconvdata/8bit-gap.c (BODY for TO_LOOP): Invoke UNICODE_TAG_HANDLER. * iconvdata/8bit-generic.c (BODY for TO_LOOP): Likewise. * iconvdata/ansi_x3.110.c (BODY for TO_LOOP): Likewise. * iconvdata/big5.c (BODY for TO_LOOP): Likewise. * iconvdata/big5hkscs.c (BODY for TO_LOOP): Likewise. * iconvdata/cp1255.c (BODY for TO_LOOP): Likewise. * iconvdata/cp1258.c (BODY for TO_LOOP): Likewise. * iconvdata/euc-cn.c (BODY for TO_LOOP): Likewise. * iconvdata/euc-jp.c (BODY for TO_LOOP): Likewise. * iconvdata/euc-kr.c (BODY for TO_LOOP): Likewise. * iconvdata/euc-tw.c (BODY for TO_LOOP): Likewise. * iconvdata/gbk.c (BODY for TO_LOOP): Likewise. * iconvdata/ibm930.c (BODY for TO_LOOP): Likewise. * iconvdata/ibm932.c (BODY for TO_LOOP): Likewise. * iconvdata/ibm933.c (BODY for TO_LOOP): Likewise. * iconvdata/ibm935.c (BODY for TO_LOOP): Likewise. * iconvdata/ibm937.c (BODY for TO_LOOP): Likewise. * iconvdata/ibm939.c (BODY for TO_LOOP): Likewise. * iconvdata/ibm943.c (BODY for TO_LOOP): Likewise. * iconvdata/iso646.c (BODY for TO_LOOP): Likewise. * iconvdata/iso8859-1.c (BODY for TO_LOOP): Likewise. * iconvdata/iso_6937.c (BODY for TO_LOOP): Likewise. * iconvdata/iso_6937-2.c (BODY for TO_LOOP): Likewise. * iconvdata/iso-2022-cn.c (BODY for TO_LOOP): Likewise. * iconvdata/iso-2022-cn-ext.c (BODY for TO_LOOP): Likewise. * iconvdata/iso-2022-kr.c (BODY for TO_LOOP): Likewise. * iconvdata/johab.c (BODY for TO_LOOP): Likewise. * iconvdata/sjis.c (BODY for TO_LOOP): Likewise. * iconvdata/t.61.c (BODY for TO_LOOP): Likewise. * iconvdata/uhc.c (BODY for TO_LOOP): Likewise. * iconvdata/unicode.c (BODY for TO_LOOP): Likewise. * iconvdata/iso-2022-jp.c (TAG_none, TAG_language, TAG_language_j, TAG_language_ja, TAG_language_k, TAG_language_ko, TAG_language_z, TAG_language_zh, CURRENT_TAG_MASK): New enum values. (EMIT_SHIFT_TO_INIT): Don't emit an escape sequence if ASCII_set is already selected but set2 or tag are set. (conversion): New enum type. (cvlist_t): New type. (CVLIST, CVLIST_FIRST, CVLIST_REST): New macros. (conversion_lists): New array. (BODY for TO_LOOP): Keep track of Unicode 3.1 language tag. If "ja", prefer conversion to Japanese character sets. If "zh", prefer conversion to GB2312. If "ko", prefer conversion to KSC5601. Small optimizations. (INIT_PARAMS): Add tag. (UPDATE_PARAMS): Add tag. 2001-06-04 Bruno Haible <haible@clisp.cons.org> * locale/programs/locfile.c (write_locale_data): Before creat(), unlink the file, to avoid crashing the processes that mmap it. Change a double slash to a single slash. Free fname in case of error return. 2001-06-02 Jakub Jelinek <jakub@redhat.com> * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Mostly revert 2000-12-03 changes, do the special handling for denormal numbers, not for normalized numbers (patch by <trevin@xmission.com>). * math/test-misc.c (main): Test frexpl with denormal arguments. 2001-06-04 Jakub Jelinek <jakub@redhat.com> * math/libm-test.inc (llround_test): Add two new llround tests. * sysdeps/ieee754/ldbl-96/s_llroundl.c (__llroundl): Don't allow overflow when rounding away from zero. 2001-06-04 Jakub Jelinek <jakub@redhat.com> * math/Makefile (libm-calls): Add e_log2, w_log2, remove s_log2. * math/math_private.h (__ieee754_log2, __ieee754_log2f, __ieee754_log2l): New prototypes. * sysdeps/generic/w_log2.c: New file. * sysdeps/generic/w_log2f.c: New file. * sysdeps/generic/w_log2l.c: New file. * sysdeps/generic/s_log2l.c: Move... * sysdeps/generic/e_log2l.c: ...to here. Rename to __ieee754_log2l. * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle log2(0) and log2(x < 0). * sysdeps/i386/fpu/s_log2.S: Move... * sysdeps/i386/fpu/e_log2.S: ...to here. Rename to __ieee754_log2. * sysdeps/i386/fpu/s_log2f.S: Move... * sysdeps/i386/fpu/e_log2f.S: ...to here. Rename to __ieee754_log2f. * sysdeps/i386/fpu/s_log2l.S: Move... * sysdeps/i386/fpu/e_log2l.S: ...to here. Rename to __ieee754_log2l. * sysdeps/m68k/fpu/s_log2.S: Move... * sysdeps/m68k/fpu/e_log2.S: ...to here. Rename to __ieee754_log2. * sysdeps/m68k/fpu/s_log2f.S: Move... * sysdeps/m68k/fpu/e_log2f.S: ...to here. Rename to __ieee754_log2f. * sysdeps/m68k/fpu/s_log2l.S: Move... * sysdeps/m68k/fpu/e_log2l.S: ...to here. Rename to __ieee754_log2l. * sysdeps/ieee754/dbl-64/s_log2.c: Move... * sysdeps/ieee754/dbl-64/e_log2.c: ...to here. Rename to __ieee754_log2. * sysdeps/ieee754/flt-32/s_log2f.c: Move... * sysdeps/ieee754/flt-32/e_log2f.c: ...to here. Rename to __ieee754_log2f. 2001-06-04 Jakub Jelinek <jakub@redhat.com> * sysdeps/generic/w_exp2.c (u_threshold): Lower threshold so that even arguments which result in denormalized exp2 are accepted. (__exp2): Arguments equal to u_threshold already result into underflow. * sysdeps/generic/w_exp2f.c (u_threshold, __exp2f): Likewise. * sysdeps/generic/w_exp2l.c (u_threshold, __exp2l): Likewise. * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Lomark was too low, with corrected lowmark use greaterequal, not greater. * sysdeps/ieee754/flt-32/e_exp2f.c (__ieee754_exp2f): Likewise. 2001-06-04 Jakub Jelinek <jakub@redhat.com> * math/libm-test.inc (ilogb_test): Test that ilogb(+-Inf) == INT_MAX. * sysdeps/i386/fpu/s_ilogb.S (__ilogb): Return INT_MAX for +-Inf. * sysdeps/i386/fpu/s_ilogbf.S (__ilogbf): Likewise. * sysdeps/i386/fpu/s_ilogbl.S (__ilogbl): Likewise. * sysdeps/ieee754/dbl-64/s_ilogb.c (__ilogb): Likewise. * sysdeps/ieee754/flt-32/s_ilogbf.c (__ilogbf): Likewise. * sysdeps/ieee754/ldbl-128/s_ilogbl.c (__ilogbl): Likewise. * sysdeps/ieee754/ldbl-96/s_ilogbl.c (__ilogbl): Likewise. 2001-06-04 Jakub Jelinek <jakub@redhat.com> * sysdeps/generic/w_coshl.c (__coshl): Test if finite argument gave non-finite result instead of using constant in generic version. * sysdeps/generic/w_coshf.c (__coshf): Likewise. * sysdeps/generic/w_cosh.c (__cosh): Likewise. * sysdeps/generic/w_exp10.c (o_threshold, u_threshold): Remove. (__exp10): Test if finite argument gave non-finite result. * sysdeps/generic/w_exp10f.c (o_threshold, u_threshold, __exp10f): Likewise. * sysdeps/generic/w_exp10l.c (o_threshold, u_threshold, __exp10l): Likewise. 2001-06-04 Jakub Jelinek <jakub@redhat.com> * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Fix overflow threshold constant (log(LDBL_MAX)+M_LN2l). 2001-05-29 Bruno Haible <haible@clisp.cons.org> * locale/programs/ld-ctype.c (idx_table): New struct type. (idx_table_init, idx_table_get, idx_table_add): New functions. (MAX_CHARNAMES_IDX): Remove macro. (locale_ctype_t): Change type of charnames_idx field. (ctype_startup): Change initialization of charnames_idx field. (find_idx): Use idx_table_get and idx_table_add for speed. * locale/programs/charmap.c (charmap_new_char): Fix ucs4 value computation of characters in a range. 2001-05-29 Bruno Haible <haible@clisp.cons.org> * iconvdata/gb18030.c (__fourbyte_to_ucs1): Add mappings for <U03F4>, <U03F5>. (__ucs_to_gb18030_tab1): Likewise. (BODY for FROM_LOOP): Add mapping for <U00010000>..<U0010FFFF>. (BODY for TO_LOOP): Likewise. * iconvdata/tst-table-charmap.sh: Update for charmaps containing <U00xxxxxx> syntax. * iconvdata/tst-table-from.c (bmp_only): New variable. (utf8_decode): If bmp_only, don't return characters outside Unicode plane 0. (main): When testing UTF-8 or GB18030, set bmp_only to 1. Don't print a conversion line if utf8_decode returns NULL. * iconvdata/tst-table-to.c (main): When testing encodings other than UTF-8 and GB18030, loop upto U+30000 instead of U+10000. Use UTF-8 instead of UCS-2 as input. * iconvdata/tst-table.sh: For GB18030, use only the part < 0x10000 of the charmap. 2001-05-29 Bruno Haible <haible@clisp.cons.org> * iconvdata/cns11643l1.c: Update to Unicode 3.1. (__cns11643l1_to_ucs4_tab): Regenerated. (__cns11643l1_from_ucs4_tab12): Regenerated. * iconvdata/cns11643.c: Update to Unicode 3.1. (__cns11643l14_to_ucs4_tab): Remove array. (__cns11643l3_to_ucs4_tab, __cns11643l4_to_ucs4_tab, __cns11643l5_to_ucs4_tab, __cns11643l6_to_ucs4_tab, __cns11643l7_to_ucs4_tab, __cns11643l15_to_ucs4_tab): New arrays. (__cns11643_from_ucs4p0_tab): Renamed from __cns11643_from_ucs4_tab. (__cns11643_from_ucs4p2_tab): New array. * iconvdata/cns11643.h (__cns11643l14_to_ucs4_tab): Remove declaration. (__cns11643l3_to_ucs4_tab, __cns11643l4_to_ucs4_tab, __cns11643l5_to_ucs4_tab, __cns11643l6_to_ucs4_tab, __cns11643l7_to_ucs4_tab, __cns11643l15_to_ucs4_tab): New declarations. (cns11643_to_ucs4): Treat planes 3, 4, 5, 6, 7, 15 instead of 14. (__cns11643_from_ucs4_tab): Remove declaration. (__cns11643_from_ucs4p0_tab, __cns11643_from_ucs4p2_tab): New declarations. (ucs4_to_cns11643): Update for new arrays. Treat U+3400..U+4DFF and U+20000..U+2A6D6. * iconvdata/cns11643l2.h (__cns11643_from_ucs4_tab): Remove declaration. (__cns11643_from_ucs4p0_tab): New declaration. (ucs4_to_cns11643l2): Update for new arrays. * iconvdata/iso-2022-cn-ext.c (BODY for FROM_LOOP): Handle planes 3 to 7. (BODY for TO_LOOP): Handle planes 3 to 7, instead of plane 14. * iconvdata/EUC-TW.irreversible: New file. * iconvdata/tst-table.sh: Use it. * iconvdata/Makefile (distribute): Add CP1255.irreversible, CP1258.irreversible, EUC-TW.irreversible. 2001-05-29 Bruno Haible <haible@clisp.cons.org> * locale/C-translit.h.in: Add transliterations for new Unicode 3.1 mathematical symbols.
Diffstat (limited to 'localedata/locales/translit_cjk_compat')
-rw-r--r-- | localedata/locales/translit_cjk_compat | 1088 |
1 files changed, 1087 insertions, 1 deletions
diff --git a/localedata/locales/translit_cjk_compat b/localedata/locales/translit_cjk_compat index c4d0810d68..18fc3aaa42 100644 --- a/localedata/locales/translit_cjk_compat +++ b/localedata/locales/translit_cjk_compat @@ -6,7 +6,9 @@ comment_char % % $ grep '^[^;]*;[^;]*;[^;]*;[^;]*;[^;]*;<square>[^;]*;' UnicodeData.txt | \ % sed -e 's/^\([^;]*\);\([^;]*\);[^;]*;[^;]*;[^;]*;<square> \([^;]*\);.*$/<U\1> "<U\3>"% \2/' | sed -e 'h' -e 's/^\([^%]*\)% .*$/\1/' -e 's/\([0-9A-F]\) \([0-9A-F]\)/\1><U\2/g' -e 'x' -e 's/^[^%]*\(% .*\)$/\1/' -e 'G' % and -% $ grep '[^;]*;CJK COMPATIBILITY IDEOGRAPH[^;]*;[^;]*;[^;]*;[^;]*;[^;]' UnicodeData.txt +% $ grep '[^;]*;CJK COMPATIBILITY IDEOGRAPH[^;]*;[^;]*;[^;]*;[^;]*;[^;]' UnicodeData.txt | \ +% sed -e 's/^\([^;]*\);\([^;]*\);[^;]*;[^;]*;[^;]*;\([^;]*\);.*$/<U\1> <U\3>% \2/' | sed -e 'h' -e 's/^\([^%]*\)% .*$/\1/' -e 's/\([0-9A-F]\) \([0-9A-F]\)/\1><U\2/g' -e 'x' -e 's/^[^%]*\(% .*\)$/\1/' -e 'G' | \ +% sed -e 's/<U\(.....\)>/<U000\1>/g' LC_CTYPE @@ -978,6 +980,1090 @@ translit_start <UFA2C> <U9928> % CJK COMPATIBILITY IDEOGRAPH-FA2D <UFA2D> <U9DB4> +% CJK COMPATIBILITY IDEOGRAPH-2F800 +<U0002F800> <U4E3D> +% CJK COMPATIBILITY IDEOGRAPH-2F801 +<U0002F801> <U4E38> +% CJK COMPATIBILITY IDEOGRAPH-2F802 +<U0002F802> <U4E41> +% CJK COMPATIBILITY IDEOGRAPH-2F803 +<U0002F803> <U00020122> +% CJK COMPATIBILITY IDEOGRAPH-2F804 +<U0002F804> <U4F60> +% CJK COMPATIBILITY IDEOGRAPH-2F805 +<U0002F805> <U4FAE> +% CJK COMPATIBILITY IDEOGRAPH-2F806 +<U0002F806> <U4FBB> +% CJK COMPATIBILITY IDEOGRAPH-2F807 +<U0002F807> <U5002> +% CJK COMPATIBILITY IDEOGRAPH-2F808 +<U0002F808> <U507A> +% CJK COMPATIBILITY IDEOGRAPH-2F809 +<U0002F809> <U5099> +% CJK COMPATIBILITY IDEOGRAPH-2F80A +<U0002F80A> <U50E7> +% CJK COMPATIBILITY IDEOGRAPH-2F80B +<U0002F80B> <U50CF> +% CJK COMPATIBILITY IDEOGRAPH-2F80C +<U0002F80C> <U349E> +% CJK COMPATIBILITY IDEOGRAPH-2F80D +<U0002F80D> <U0002063A> +% CJK COMPATIBILITY IDEOGRAPH-2F80E +<U0002F80E> <U514D> +% CJK COMPATIBILITY IDEOGRAPH-2F80F +<U0002F80F> <U5154> +% CJK COMPATIBILITY IDEOGRAPH-2F810 +<U0002F810> <U5164> +% CJK COMPATIBILITY IDEOGRAPH-2F811 +<U0002F811> <U5177> +% CJK COMPATIBILITY IDEOGRAPH-2F812 +<U0002F812> <U0002051C> +% CJK COMPATIBILITY IDEOGRAPH-2F813 +<U0002F813> <U34B9> +% CJK COMPATIBILITY IDEOGRAPH-2F814 +<U0002F814> <U5167> +% CJK COMPATIBILITY IDEOGRAPH-2F815 +<U0002F815> <U518D> +% CJK COMPATIBILITY IDEOGRAPH-2F816 +<U0002F816> <U0002054B> +% CJK COMPATIBILITY IDEOGRAPH-2F817 +<U0002F817> <U5197> +% CJK COMPATIBILITY IDEOGRAPH-2F818 +<U0002F818> <U51A4> +% CJK COMPATIBILITY IDEOGRAPH-2F819 +<U0002F819> <U4ECC> +% CJK COMPATIBILITY IDEOGRAPH-2F81A +<U0002F81A> <U51AC> +% CJK COMPATIBILITY IDEOGRAPH-2F81B +<U0002F81B> <U51B5> +% CJK COMPATIBILITY IDEOGRAPH-2F81C +<U0002F81C> <U000291DF> +% CJK COMPATIBILITY IDEOGRAPH-2F81D +<U0002F81D> <U51F5> +% CJK COMPATIBILITY IDEOGRAPH-2F81E +<U0002F81E> <U5203> +% CJK COMPATIBILITY IDEOGRAPH-2F81F +<U0002F81F> <U34DF> +% CJK COMPATIBILITY IDEOGRAPH-2F820 +<U0002F820> <U523B> +% CJK COMPATIBILITY IDEOGRAPH-2F821 +<U0002F821> <U5246> +% CJK COMPATIBILITY IDEOGRAPH-2F822 +<U0002F822> <U5272> +% CJK COMPATIBILITY IDEOGRAPH-2F823 +<U0002F823> <U5277> +% CJK COMPATIBILITY IDEOGRAPH-2F824 +<U0002F824> <U3515> +% CJK COMPATIBILITY IDEOGRAPH-2F825 +<U0002F825> <U52C7> +% CJK COMPATIBILITY IDEOGRAPH-2F826 +<U0002F826> <U52C9> +% CJK COMPATIBILITY IDEOGRAPH-2F827 +<U0002F827> <U52E4> +% CJK COMPATIBILITY IDEOGRAPH-2F828 +<U0002F828> <U52FA> +% CJK COMPATIBILITY IDEOGRAPH-2F829 +<U0002F829> <U5305> +% CJK COMPATIBILITY IDEOGRAPH-2F82A +<U0002F82A> <U5306> +% CJK COMPATIBILITY IDEOGRAPH-2F82B +<U0002F82B> <U5317> +% CJK COMPATIBILITY IDEOGRAPH-2F82C +<U0002F82C> <U5349> +% CJK COMPATIBILITY IDEOGRAPH-2F82D +<U0002F82D> <U5351> +% CJK COMPATIBILITY IDEOGRAPH-2F82E +<U0002F82E> <U535A> +% CJK COMPATIBILITY IDEOGRAPH-2F82F +<U0002F82F> <U5373> +% CJK COMPATIBILITY IDEOGRAPH-2F830 +<U0002F830> <U537D> +% CJK COMPATIBILITY IDEOGRAPH-2F831 +<U0002F831> <U537F> +% CJK COMPATIBILITY IDEOGRAPH-2F832 +<U0002F832> <U537F> +% CJK COMPATIBILITY IDEOGRAPH-2F833 +<U0002F833> <U537F> +% CJK COMPATIBILITY IDEOGRAPH-2F834 +<U0002F834> <U00020A2C> +% CJK COMPATIBILITY IDEOGRAPH-2F835 +<U0002F835> <U7070> +% CJK COMPATIBILITY IDEOGRAPH-2F836 +<U0002F836> <U53CA> +% CJK COMPATIBILITY IDEOGRAPH-2F837 +<U0002F837> <U53DF> +% CJK COMPATIBILITY IDEOGRAPH-2F838 +<U0002F838> <U00020B63> +% CJK COMPATIBILITY IDEOGRAPH-2F839 +<U0002F839> <U53EB> +% CJK COMPATIBILITY IDEOGRAPH-2F83A +<U0002F83A> <U53F1> +% CJK COMPATIBILITY IDEOGRAPH-2F83B +<U0002F83B> <U5406> +% CJK COMPATIBILITY IDEOGRAPH-2F83C +<U0002F83C> <U549E> +% CJK COMPATIBILITY IDEOGRAPH-2F83D +<U0002F83D> <U5438> +% CJK COMPATIBILITY IDEOGRAPH-2F83E +<U0002F83E> <U5448> +% CJK COMPATIBILITY IDEOGRAPH-2F83F +<U0002F83F> <U5468> +% CJK COMPATIBILITY IDEOGRAPH-2F840 +<U0002F840> <U54A2> +% CJK COMPATIBILITY IDEOGRAPH-2F841 +<U0002F841> <U54F6> +% CJK COMPATIBILITY IDEOGRAPH-2F842 +<U0002F842> <U5510> +% CJK COMPATIBILITY IDEOGRAPH-2F843 +<U0002F843> <U5553> +% CJK COMPATIBILITY IDEOGRAPH-2F844 +<U0002F844> <U5563> +% CJK COMPATIBILITY IDEOGRAPH-2F845 +<U0002F845> <U5584> +% CJK COMPATIBILITY IDEOGRAPH-2F846 +<U0002F846> <U5584> +% CJK COMPATIBILITY IDEOGRAPH-2F847 +<U0002F847> <U5599> +% CJK COMPATIBILITY IDEOGRAPH-2F848 +<U0002F848> <U55AB> +% CJK COMPATIBILITY IDEOGRAPH-2F849 +<U0002F849> <U55B3> +% CJK COMPATIBILITY IDEOGRAPH-2F84A +<U0002F84A> <U55C2> +% CJK COMPATIBILITY IDEOGRAPH-2F84B +<U0002F84B> <U5716> +% CJK COMPATIBILITY IDEOGRAPH-2F84C +<U0002F84C> <U5606> +% CJK COMPATIBILITY IDEOGRAPH-2F84D +<U0002F84D> <U5717> +% CJK COMPATIBILITY IDEOGRAPH-2F84E +<U0002F84E> <U5651> +% CJK COMPATIBILITY IDEOGRAPH-2F84F +<U0002F84F> <U5674> +% CJK COMPATIBILITY IDEOGRAPH-2F850 +<U0002F850> <U5207> +% CJK COMPATIBILITY IDEOGRAPH-2F851 +<U0002F851> <U58EE> +% CJK COMPATIBILITY IDEOGRAPH-2F852 +<U0002F852> <U57CE> +% CJK COMPATIBILITY IDEOGRAPH-2F853 +<U0002F853> <U57F4> +% CJK COMPATIBILITY IDEOGRAPH-2F854 +<U0002F854> <U580D> +% CJK COMPATIBILITY IDEOGRAPH-2F855 +<U0002F855> <U578B> +% CJK COMPATIBILITY IDEOGRAPH-2F856 +<U0002F856> <U5832> +% CJK COMPATIBILITY IDEOGRAPH-2F857 +<U0002F857> <U5831> +% CJK COMPATIBILITY IDEOGRAPH-2F858 +<U0002F858> <U58AC> +% CJK COMPATIBILITY IDEOGRAPH-2F859 +<U0002F859> <U000214E4> +% CJK COMPATIBILITY IDEOGRAPH-2F85A +<U0002F85A> <U58F2> +% CJK COMPATIBILITY IDEOGRAPH-2F85B +<U0002F85B> <U58F7> +% CJK COMPATIBILITY IDEOGRAPH-2F85C +<U0002F85C> <U5906> +% CJK COMPATIBILITY IDEOGRAPH-2F85D +<U0002F85D> <U591A> +% CJK COMPATIBILITY IDEOGRAPH-2F85E +<U0002F85E> <U5922> +% CJK COMPATIBILITY IDEOGRAPH-2F85F +<U0002F85F> <U5962> +% CJK COMPATIBILITY IDEOGRAPH-2F860 +<U0002F860> <U000216A8> +% CJK COMPATIBILITY IDEOGRAPH-2F861 +<U0002F861> <U000216EA> +% CJK COMPATIBILITY IDEOGRAPH-2F862 +<U0002F862> <U59EC> +% CJK COMPATIBILITY IDEOGRAPH-2F863 +<U0002F863> <U5A1B> +% CJK COMPATIBILITY IDEOGRAPH-2F864 +<U0002F864> <U5A27> +% CJK COMPATIBILITY IDEOGRAPH-2F865 +<U0002F865> <U59D8> +% CJK COMPATIBILITY IDEOGRAPH-2F866 +<U0002F866> <U5A66> +% CJK COMPATIBILITY IDEOGRAPH-2F867 +<U0002F867> <U36EE> +% CJK COMPATIBILITY IDEOGRAPH-2F868 +<U0002F868> <U0002136A> +% CJK COMPATIBILITY IDEOGRAPH-2F869 +<U0002F869> <U5B08> +% CJK COMPATIBILITY IDEOGRAPH-2F86A +<U0002F86A> <U5B3E> +% CJK COMPATIBILITY IDEOGRAPH-2F86B +<U0002F86B> <U5B3E> +% CJK COMPATIBILITY IDEOGRAPH-2F86C +<U0002F86C> <U000219C8> +% CJK COMPATIBILITY IDEOGRAPH-2F86D +<U0002F86D> <U5BC3> +% CJK COMPATIBILITY IDEOGRAPH-2F86E +<U0002F86E> <U5BD8> +% CJK COMPATIBILITY IDEOGRAPH-2F86F +<U0002F86F> <U5BE7> +% CJK COMPATIBILITY IDEOGRAPH-2F870 +<U0002F870> <U5BF3> +% CJK COMPATIBILITY IDEOGRAPH-2F871 +<U0002F871> <U00021B18> +% CJK COMPATIBILITY IDEOGRAPH-2F872 +<U0002F872> <U5BFF> +% CJK COMPATIBILITY IDEOGRAPH-2F873 +<U0002F873> <U5C06> +% CJK COMPATIBILITY IDEOGRAPH-2F874 +<U0002F874> <U5F33> +% CJK COMPATIBILITY IDEOGRAPH-2F875 +<U0002F875> <U5C22> +% CJK COMPATIBILITY IDEOGRAPH-2F876 +<U0002F876> <U3781> +% CJK COMPATIBILITY IDEOGRAPH-2F877 +<U0002F877> <U5C60> +% CJK COMPATIBILITY IDEOGRAPH-2F878 +<U0002F878> <U5C6E> +% CJK COMPATIBILITY IDEOGRAPH-2F879 +<U0002F879> <U5CC0> +% CJK COMPATIBILITY IDEOGRAPH-2F87A +<U0002F87A> <U5C8D> +% CJK COMPATIBILITY IDEOGRAPH-2F87B +<U0002F87B> <U00021DE4> +% CJK COMPATIBILITY IDEOGRAPH-2F87C +<U0002F87C> <U5D43> +% CJK COMPATIBILITY IDEOGRAPH-2F87D +<U0002F87D> <U00021DE6> +% CJK COMPATIBILITY IDEOGRAPH-2F87E +<U0002F87E> <U5D6E> +% CJK COMPATIBILITY IDEOGRAPH-2F87F +<U0002F87F> <U5D6B> +% CJK COMPATIBILITY IDEOGRAPH-2F880 +<U0002F880> <U5D7C> +% CJK COMPATIBILITY IDEOGRAPH-2F881 +<U0002F881> <U5DE1> +% CJK COMPATIBILITY IDEOGRAPH-2F882 +<U0002F882> <U5DE2> +% CJK COMPATIBILITY IDEOGRAPH-2F883 +<U0002F883> <U382F> +% CJK COMPATIBILITY IDEOGRAPH-2F884 +<U0002F884> <U5DFD> +% CJK COMPATIBILITY IDEOGRAPH-2F885 +<U0002F885> <U5E28> +% CJK COMPATIBILITY IDEOGRAPH-2F886 +<U0002F886> <U5E3D> +% CJK COMPATIBILITY IDEOGRAPH-2F887 +<U0002F887> <U5E69> +% CJK COMPATIBILITY IDEOGRAPH-2F888 +<U0002F888> <U3862> +% CJK COMPATIBILITY IDEOGRAPH-2F889 +<U0002F889> <U00022183> +% CJK COMPATIBILITY IDEOGRAPH-2F88A +<U0002F88A> <U387C> +% CJK COMPATIBILITY IDEOGRAPH-2F88B +<U0002F88B> <U5EB0> +% CJK COMPATIBILITY IDEOGRAPH-2F88C +<U0002F88C> <U5EB3> +% CJK COMPATIBILITY IDEOGRAPH-2F88D +<U0002F88D> <U5EB6> +% CJK COMPATIBILITY IDEOGRAPH-2F88E +<U0002F88E> <U5ECA> +% CJK COMPATIBILITY IDEOGRAPH-2F88F +<U0002F88F> <U0002A392> +% CJK COMPATIBILITY IDEOGRAPH-2F890 +<U0002F890> <U5EFE> +% CJK COMPATIBILITY IDEOGRAPH-2F891 +<U0002F891> <U00022331> +% CJK COMPATIBILITY IDEOGRAPH-2F892 +<U0002F892> <U00022331> +% CJK COMPATIBILITY IDEOGRAPH-2F893 +<U0002F893> <U8201> +% CJK COMPATIBILITY IDEOGRAPH-2F894 +<U0002F894> <U5F22> +% CJK COMPATIBILITY IDEOGRAPH-2F895 +<U0002F895> <U5F22> +% CJK COMPATIBILITY IDEOGRAPH-2F896 +<U0002F896> <U38C7> +% CJK COMPATIBILITY IDEOGRAPH-2F897 +<U0002F897> <U000232B8> +% CJK COMPATIBILITY IDEOGRAPH-2F898 +<U0002F898> <U000261DA> +% CJK COMPATIBILITY IDEOGRAPH-2F899 +<U0002F899> <U5F62> +% CJK COMPATIBILITY IDEOGRAPH-2F89A +<U0002F89A> <U5F6B> +% CJK COMPATIBILITY IDEOGRAPH-2F89B +<U0002F89B> <U38E3> +% CJK COMPATIBILITY IDEOGRAPH-2F89C +<U0002F89C> <U5F9A> +% CJK COMPATIBILITY IDEOGRAPH-2F89D +<U0002F89D> <U5FCD> +% CJK COMPATIBILITY IDEOGRAPH-2F89E +<U0002F89E> <U5FD7> +% CJK COMPATIBILITY IDEOGRAPH-2F89F +<U0002F89F> <U5FF9> +% CJK COMPATIBILITY IDEOGRAPH-2F8A0 +<U0002F8A0> <U6081> +% CJK COMPATIBILITY IDEOGRAPH-2F8A1 +<U0002F8A1> <U393A> +% CJK COMPATIBILITY IDEOGRAPH-2F8A2 +<U0002F8A2> <U391C> +% CJK COMPATIBILITY IDEOGRAPH-2F8A3 +<U0002F8A3> <U6094> +% CJK COMPATIBILITY IDEOGRAPH-2F8A4 +<U0002F8A4> <U000226D4> +% CJK COMPATIBILITY IDEOGRAPH-2F8A5 +<U0002F8A5> <U60C7> +% CJK COMPATIBILITY IDEOGRAPH-2F8A6 +<U0002F8A6> <U6148> +% CJK COMPATIBILITY IDEOGRAPH-2F8A7 +<U0002F8A7> <U614C> +% CJK COMPATIBILITY IDEOGRAPH-2F8A8 +<U0002F8A8> <U614E> +% CJK COMPATIBILITY IDEOGRAPH-2F8A9 +<U0002F8A9> <U614C> +% CJK COMPATIBILITY IDEOGRAPH-2F8AA +<U0002F8AA> <U617A> +% CJK COMPATIBILITY IDEOGRAPH-2F8AB +<U0002F8AB> <U618E> +% CJK COMPATIBILITY IDEOGRAPH-2F8AC +<U0002F8AC> <U61B2> +% CJK COMPATIBILITY IDEOGRAPH-2F8AD +<U0002F8AD> <U61A4> +% CJK COMPATIBILITY IDEOGRAPH-2F8AE +<U0002F8AE> <U61AF> +% CJK COMPATIBILITY IDEOGRAPH-2F8AF +<U0002F8AF> <U61DE> +% CJK COMPATIBILITY IDEOGRAPH-2F8B0 +<U0002F8B0> <U61F2> +% CJK COMPATIBILITY IDEOGRAPH-2F8B1 +<U0002F8B1> <U61F6> +% CJK COMPATIBILITY IDEOGRAPH-2F8B2 +<U0002F8B2> <U6210> +% CJK COMPATIBILITY IDEOGRAPH-2F8B3 +<U0002F8B3> <U621B> +% CJK COMPATIBILITY IDEOGRAPH-2F8B4 +<U0002F8B4> <U625D> +% CJK COMPATIBILITY IDEOGRAPH-2F8B5 +<U0002F8B5> <U62B1> +% CJK COMPATIBILITY IDEOGRAPH-2F8B6 +<U0002F8B6> <U62D4> +% CJK COMPATIBILITY IDEOGRAPH-2F8B7 +<U0002F8B7> <U6350> +% CJK COMPATIBILITY IDEOGRAPH-2F8B8 +<U0002F8B8> <U00022B0C> +% CJK COMPATIBILITY IDEOGRAPH-2F8B9 +<U0002F8B9> <U633D> +% CJK COMPATIBILITY IDEOGRAPH-2F8BA +<U0002F8BA> <U62FC> +% CJK COMPATIBILITY IDEOGRAPH-2F8BB +<U0002F8BB> <U6368> +% CJK COMPATIBILITY IDEOGRAPH-2F8BC +<U0002F8BC> <U6383> +% CJK COMPATIBILITY IDEOGRAPH-2F8BD +<U0002F8BD> <U63E4> +% CJK COMPATIBILITY IDEOGRAPH-2F8BE +<U0002F8BE> <U00022BF1> +% CJK COMPATIBILITY IDEOGRAPH-2F8BF +<U0002F8BF> <U6422> +% CJK COMPATIBILITY IDEOGRAPH-2F8C0 +<U0002F8C0> <U63C5> +% CJK COMPATIBILITY IDEOGRAPH-2F8C1 +<U0002F8C1> <U63A9> +% CJK COMPATIBILITY IDEOGRAPH-2F8C2 +<U0002F8C2> <U3A2E> +% CJK COMPATIBILITY IDEOGRAPH-2F8C3 +<U0002F8C3> <U6469> +% CJK COMPATIBILITY IDEOGRAPH-2F8C4 +<U0002F8C4> <U647E> +% CJK COMPATIBILITY IDEOGRAPH-2F8C5 +<U0002F8C5> <U649D> +% CJK COMPATIBILITY IDEOGRAPH-2F8C6 +<U0002F8C6> <U6477> +% CJK COMPATIBILITY IDEOGRAPH-2F8C7 +<U0002F8C7> <U3A6C> +% CJK COMPATIBILITY IDEOGRAPH-2F8C8 +<U0002F8C8> <U654F> +% CJK COMPATIBILITY IDEOGRAPH-2F8C9 +<U0002F8C9> <U656C> +% CJK COMPATIBILITY IDEOGRAPH-2F8CA +<U0002F8CA> <U0002300A> +% CJK COMPATIBILITY IDEOGRAPH-2F8CB +<U0002F8CB> <U65E3> +% CJK COMPATIBILITY IDEOGRAPH-2F8CC +<U0002F8CC> <U66F8> +% CJK COMPATIBILITY IDEOGRAPH-2F8CD +<U0002F8CD> <U6649> +% CJK COMPATIBILITY IDEOGRAPH-2F8CE +<U0002F8CE> <U3B19> +% CJK COMPATIBILITY IDEOGRAPH-2F8CF +<U0002F8CF> <U6691> +% CJK COMPATIBILITY IDEOGRAPH-2F8D0 +<U0002F8D0> <U3B08> +% CJK COMPATIBILITY IDEOGRAPH-2F8D1 +<U0002F8D1> <U3AE4> +% CJK COMPATIBILITY IDEOGRAPH-2F8D2 +<U0002F8D2> <U5192> +% CJK COMPATIBILITY IDEOGRAPH-2F8D3 +<U0002F8D3> <U5195> +% CJK COMPATIBILITY IDEOGRAPH-2F8D4 +<U0002F8D4> <U6700> +% CJK COMPATIBILITY IDEOGRAPH-2F8D5 +<U0002F8D5> <U669C> +% CJK COMPATIBILITY IDEOGRAPH-2F8D6 +<U0002F8D6> <U80AD> +% CJK COMPATIBILITY IDEOGRAPH-2F8D7 +<U0002F8D7> <U43D9> +% CJK COMPATIBILITY IDEOGRAPH-2F8D8 +<U0002F8D8> <U6717> +% CJK COMPATIBILITY IDEOGRAPH-2F8D9 +<U0002F8D9> <U671B> +% CJK COMPATIBILITY IDEOGRAPH-2F8DA +<U0002F8DA> <U6721> +% CJK COMPATIBILITY IDEOGRAPH-2F8DB +<U0002F8DB> <U675E> +% CJK COMPATIBILITY IDEOGRAPH-2F8DC +<U0002F8DC> <U6753> +% CJK COMPATIBILITY IDEOGRAPH-2F8DD +<U0002F8DD> <U000233C3> +% CJK COMPATIBILITY IDEOGRAPH-2F8DE +<U0002F8DE> <U3B49> +% CJK COMPATIBILITY IDEOGRAPH-2F8DF +<U0002F8DF> <U67FA> +% CJK COMPATIBILITY IDEOGRAPH-2F8E0 +<U0002F8E0> <U6785> +% CJK COMPATIBILITY IDEOGRAPH-2F8E1 +<U0002F8E1> <U6852> +% CJK COMPATIBILITY IDEOGRAPH-2F8E2 +<U0002F8E2> <U6885> +% CJK COMPATIBILITY IDEOGRAPH-2F8E3 +<U0002F8E3> <U0002346D> +% CJK COMPATIBILITY IDEOGRAPH-2F8E4 +<U0002F8E4> <U688E> +% CJK COMPATIBILITY IDEOGRAPH-2F8E5 +<U0002F8E5> <U681F> +% CJK COMPATIBILITY IDEOGRAPH-2F8E6 +<U0002F8E6> <U6914> +% CJK COMPATIBILITY IDEOGRAPH-2F8E7 +<U0002F8E7> <U3B9D> +% CJK COMPATIBILITY IDEOGRAPH-2F8E8 +<U0002F8E8> <U6942> +% CJK COMPATIBILITY IDEOGRAPH-2F8E9 +<U0002F8E9> <U69A3> +% CJK COMPATIBILITY IDEOGRAPH-2F8EA +<U0002F8EA> <U69EA> +% CJK COMPATIBILITY IDEOGRAPH-2F8EB +<U0002F8EB> <U6AA8> +% CJK COMPATIBILITY IDEOGRAPH-2F8EC +<U0002F8EC> <U000236A3> +% CJK COMPATIBILITY IDEOGRAPH-2F8ED +<U0002F8ED> <U6ADB> +% CJK COMPATIBILITY IDEOGRAPH-2F8EE +<U0002F8EE> <U3C18> +% CJK COMPATIBILITY IDEOGRAPH-2F8EF +<U0002F8EF> <U6B21> +% CJK COMPATIBILITY IDEOGRAPH-2F8F0 +<U0002F8F0> <U000238A7> +% CJK COMPATIBILITY IDEOGRAPH-2F8F1 +<U0002F8F1> <U6B54> +% CJK COMPATIBILITY IDEOGRAPH-2F8F2 +<U0002F8F2> <U3C4E> +% CJK COMPATIBILITY IDEOGRAPH-2F8F3 +<U0002F8F3> <U6B72> +% CJK COMPATIBILITY IDEOGRAPH-2F8F4 +<U0002F8F4> <U6B9F> +% CJK COMPATIBILITY IDEOGRAPH-2F8F5 +<U0002F8F5> <U6BBA> +% CJK COMPATIBILITY IDEOGRAPH-2F8F6 +<U0002F8F6> <U6BBB> +% CJK COMPATIBILITY IDEOGRAPH-2F8F7 +<U0002F8F7> <U00023A8D> +% CJK COMPATIBILITY IDEOGRAPH-2F8F8 +<U0002F8F8> <U00021D0B> +% CJK COMPATIBILITY IDEOGRAPH-2F8F9 +<U0002F8F9> <U00023AFA> +% CJK COMPATIBILITY IDEOGRAPH-2F8FA +<U0002F8FA> <U6C4E> +% CJK COMPATIBILITY IDEOGRAPH-2F8FB +<U0002F8FB> <U00023CBC> +% CJK COMPATIBILITY IDEOGRAPH-2F8FC +<U0002F8FC> <U6CBF> +% CJK COMPATIBILITY IDEOGRAPH-2F8FD +<U0002F8FD> <U6CCD> +% CJK COMPATIBILITY IDEOGRAPH-2F8FE +<U0002F8FE> <U6C67> +% CJK COMPATIBILITY IDEOGRAPH-2F8FF +<U0002F8FF> <U6D16> +% CJK COMPATIBILITY IDEOGRAPH-2F900 +<U0002F900> <U6D3E> +% CJK COMPATIBILITY IDEOGRAPH-2F901 +<U0002F901> <U6D77> +% CJK COMPATIBILITY IDEOGRAPH-2F902 +<U0002F902> <U6D41> +% CJK COMPATIBILITY IDEOGRAPH-2F903 +<U0002F903> <U6D69> +% CJK COMPATIBILITY IDEOGRAPH-2F904 +<U0002F904> <U6D78> +% CJK COMPATIBILITY IDEOGRAPH-2F905 +<U0002F905> <U6D85> +% CJK COMPATIBILITY IDEOGRAPH-2F906 +<U0002F906> <U00023D1E> +% CJK COMPATIBILITY IDEOGRAPH-2F907 +<U0002F907> <U6D34> +% CJK COMPATIBILITY IDEOGRAPH-2F908 +<U0002F908> <U6E2F> +% CJK COMPATIBILITY IDEOGRAPH-2F909 +<U0002F909> <U6E6E> +% CJK COMPATIBILITY IDEOGRAPH-2F90A +<U0002F90A> <U3D33> +% CJK COMPATIBILITY IDEOGRAPH-2F90B +<U0002F90B> <U6ECB> +% CJK COMPATIBILITY IDEOGRAPH-2F90C +<U0002F90C> <U6EC7> +% CJK COMPATIBILITY IDEOGRAPH-2F90D +<U0002F90D> <U00023ED1> +% CJK COMPATIBILITY IDEOGRAPH-2F90E +<U0002F90E> <U6DF9> +% CJK COMPATIBILITY IDEOGRAPH-2F90F +<U0002F90F> <U6F6E> +% CJK COMPATIBILITY IDEOGRAPH-2F910 +<U0002F910> <U00023F5E> +% CJK COMPATIBILITY IDEOGRAPH-2F911 +<U0002F911> <U00023F8E> +% CJK COMPATIBILITY IDEOGRAPH-2F912 +<U0002F912> <U6FC6> +% CJK COMPATIBILITY IDEOGRAPH-2F913 +<U0002F913> <U7039> +% CJK COMPATIBILITY IDEOGRAPH-2F914 +<U0002F914> <U701E> +% CJK COMPATIBILITY IDEOGRAPH-2F915 +<U0002F915> <U701B> +% CJK COMPATIBILITY IDEOGRAPH-2F916 +<U0002F916> <U3D96> +% CJK COMPATIBILITY IDEOGRAPH-2F917 +<U0002F917> <U704A> +% CJK COMPATIBILITY IDEOGRAPH-2F918 +<U0002F918> <U707D> +% CJK COMPATIBILITY IDEOGRAPH-2F919 +<U0002F919> <U7077> +% CJK COMPATIBILITY IDEOGRAPH-2F91A +<U0002F91A> <U70AD> +% CJK COMPATIBILITY IDEOGRAPH-2F91B +<U0002F91B> <U00020525> +% CJK COMPATIBILITY IDEOGRAPH-2F91C +<U0002F91C> <U7145> +% CJK COMPATIBILITY IDEOGRAPH-2F91D +<U0002F91D> <U00024263> +% CJK COMPATIBILITY IDEOGRAPH-2F91E +<U0002F91E> <U719C> +% CJK COMPATIBILITY IDEOGRAPH-2F91F +<U0002F91F> <U43AB> +% CJK COMPATIBILITY IDEOGRAPH-2F920 +<U0002F920> <U7228> +% CJK COMPATIBILITY IDEOGRAPH-2F921 +<U0002F921> <U7235> +% CJK COMPATIBILITY IDEOGRAPH-2F922 +<U0002F922> <U7250> +% CJK COMPATIBILITY IDEOGRAPH-2F923 +<U0002F923> <U00024608> +% CJK COMPATIBILITY IDEOGRAPH-2F924 +<U0002F924> <U7280> +% CJK COMPATIBILITY IDEOGRAPH-2F925 +<U0002F925> <U7295> +% CJK COMPATIBILITY IDEOGRAPH-2F926 +<U0002F926> <U00024735> +% CJK COMPATIBILITY IDEOGRAPH-2F927 +<U0002F927> <U00024814> +% CJK COMPATIBILITY IDEOGRAPH-2F928 +<U0002F928> <U737A> +% CJK COMPATIBILITY IDEOGRAPH-2F929 +<U0002F929> <U738B> +% CJK COMPATIBILITY IDEOGRAPH-2F92A +<U0002F92A> <U3EAC> +% CJK COMPATIBILITY IDEOGRAPH-2F92B +<U0002F92B> <U73A5> +% CJK COMPATIBILITY IDEOGRAPH-2F92C +<U0002F92C> <U3EB8> +% CJK COMPATIBILITY IDEOGRAPH-2F92D +<U0002F92D> <U3EB8> +% CJK COMPATIBILITY IDEOGRAPH-2F92E +<U0002F92E> <U7447> +% CJK COMPATIBILITY IDEOGRAPH-2F92F +<U0002F92F> <U745C> +% CJK COMPATIBILITY IDEOGRAPH-2F930 +<U0002F930> <U7471> +% CJK COMPATIBILITY IDEOGRAPH-2F931 +<U0002F931> <U7485> +% CJK COMPATIBILITY IDEOGRAPH-2F932 +<U0002F932> <U74CA> +% CJK COMPATIBILITY IDEOGRAPH-2F933 +<U0002F933> <U3F1B> +% CJK COMPATIBILITY IDEOGRAPH-2F934 +<U0002F934> <U7524> +% CJK COMPATIBILITY IDEOGRAPH-2F935 +<U0002F935> <U00024C36> +% CJK COMPATIBILITY IDEOGRAPH-2F936 +<U0002F936> <U753E> +% CJK COMPATIBILITY IDEOGRAPH-2F937 +<U0002F937> <U00024C92> +% CJK COMPATIBILITY IDEOGRAPH-2F938 +<U0002F938> <U7570> +% CJK COMPATIBILITY IDEOGRAPH-2F939 +<U0002F939> <U0002219F> +% CJK COMPATIBILITY IDEOGRAPH-2F93A +<U0002F93A> <U7610> +% CJK COMPATIBILITY IDEOGRAPH-2F93B +<U0002F93B> <U00024FA1> +% CJK COMPATIBILITY IDEOGRAPH-2F93C +<U0002F93C> <U00024FB8> +% CJK COMPATIBILITY IDEOGRAPH-2F93D +<U0002F93D> <U00025044> +% CJK COMPATIBILITY IDEOGRAPH-2F93E +<U0002F93E> <U3FFC> +% CJK COMPATIBILITY IDEOGRAPH-2F93F +<U0002F93F> <U4008> +% CJK COMPATIBILITY IDEOGRAPH-2F940 +<U0002F940> <U76F4> +% CJK COMPATIBILITY IDEOGRAPH-2F941 +<U0002F941> <U000250F3> +% CJK COMPATIBILITY IDEOGRAPH-2F942 +<U0002F942> <U000250F2> +% CJK COMPATIBILITY IDEOGRAPH-2F943 +<U0002F943> <U00025119> +% CJK COMPATIBILITY IDEOGRAPH-2F944 +<U0002F944> <U00025133> +% CJK COMPATIBILITY IDEOGRAPH-2F945 +<U0002F945> <U771E> +% CJK COMPATIBILITY IDEOGRAPH-2F946 +<U0002F946> <U771F> +% CJK COMPATIBILITY IDEOGRAPH-2F947 +<U0002F947> <U771F> +% CJK COMPATIBILITY IDEOGRAPH-2F948 +<U0002F948> <U774A> +% CJK COMPATIBILITY IDEOGRAPH-2F949 +<U0002F949> <U4039> +% CJK COMPATIBILITY IDEOGRAPH-2F94A +<U0002F94A> <U778B> +% CJK COMPATIBILITY IDEOGRAPH-2F94B +<U0002F94B> <U4046> +% CJK COMPATIBILITY IDEOGRAPH-2F94C +<U0002F94C> <U4096> +% CJK COMPATIBILITY IDEOGRAPH-2F94D +<U0002F94D> <U0002541D> +% CJK COMPATIBILITY IDEOGRAPH-2F94E +<U0002F94E> <U784E> +% CJK COMPATIBILITY IDEOGRAPH-2F94F +<U0002F94F> <U788C> +% CJK COMPATIBILITY IDEOGRAPH-2F950 +<U0002F950> <U78CC> +% CJK COMPATIBILITY IDEOGRAPH-2F951 +<U0002F951> <U40E3> +% CJK COMPATIBILITY IDEOGRAPH-2F952 +<U0002F952> <U00025626> +% CJK COMPATIBILITY IDEOGRAPH-2F953 +<U0002F953> <U7956> +% CJK COMPATIBILITY IDEOGRAPH-2F954 +<U0002F954> <U0002569A> +% CJK COMPATIBILITY IDEOGRAPH-2F955 +<U0002F955> <U000256C5> +% CJK COMPATIBILITY IDEOGRAPH-2F956 +<U0002F956> <U798F> +% CJK COMPATIBILITY IDEOGRAPH-2F957 +<U0002F957> <U79EB> +% CJK COMPATIBILITY IDEOGRAPH-2F958 +<U0002F958> <U412F> +% CJK COMPATIBILITY IDEOGRAPH-2F959 +<U0002F959> <U7A40> +% CJK COMPATIBILITY IDEOGRAPH-2F95A +<U0002F95A> <U7A4A> +% CJK COMPATIBILITY IDEOGRAPH-2F95B +<U0002F95B> <U7A4F> +% CJK COMPATIBILITY IDEOGRAPH-2F95C +<U0002F95C> <U0002597C> +% CJK COMPATIBILITY IDEOGRAPH-2F95D +<U0002F95D> <U00025AA7> +% CJK COMPATIBILITY IDEOGRAPH-2F95E +<U0002F95E> <U00025AA7> +% CJK COMPATIBILITY IDEOGRAPH-2F95F +<U0002F95F> <U7AAE> +% CJK COMPATIBILITY IDEOGRAPH-2F960 +<U0002F960> <U4202> +% CJK COMPATIBILITY IDEOGRAPH-2F961 +<U0002F961> <U00025BAB> +% CJK COMPATIBILITY IDEOGRAPH-2F962 +<U0002F962> <U7BC6> +% CJK COMPATIBILITY IDEOGRAPH-2F963 +<U0002F963> <U7BC9> +% CJK COMPATIBILITY IDEOGRAPH-2F964 +<U0002F964> <U4227> +% CJK COMPATIBILITY IDEOGRAPH-2F965 +<U0002F965> <U00025C80> +% CJK COMPATIBILITY IDEOGRAPH-2F966 +<U0002F966> <U7CD2> +% CJK COMPATIBILITY IDEOGRAPH-2F967 +<U0002F967> <U42A0> +% CJK COMPATIBILITY IDEOGRAPH-2F968 +<U0002F968> <U7CE8> +% CJK COMPATIBILITY IDEOGRAPH-2F969 +<U0002F969> <U7CE3> +% CJK COMPATIBILITY IDEOGRAPH-2F96A +<U0002F96A> <U7D00> +% CJK COMPATIBILITY IDEOGRAPH-2F96B +<U0002F96B> <U00025F86> +% CJK COMPATIBILITY IDEOGRAPH-2F96C +<U0002F96C> <U7D63> +% CJK COMPATIBILITY IDEOGRAPH-2F96D +<U0002F96D> <U4301> +% CJK COMPATIBILITY IDEOGRAPH-2F96E +<U0002F96E> <U7DC7> +% CJK COMPATIBILITY IDEOGRAPH-2F96F +<U0002F96F> <U7E02> +% CJK COMPATIBILITY IDEOGRAPH-2F970 +<U0002F970> <U7E45> +% CJK COMPATIBILITY IDEOGRAPH-2F971 +<U0002F971> <U4334> +% CJK COMPATIBILITY IDEOGRAPH-2F972 +<U0002F972> <U00026228> +% CJK COMPATIBILITY IDEOGRAPH-2F973 +<U0002F973> <U00026247> +% CJK COMPATIBILITY IDEOGRAPH-2F974 +<U0002F974> <U4359> +% CJK COMPATIBILITY IDEOGRAPH-2F975 +<U0002F975> <U000262D9> +% CJK COMPATIBILITY IDEOGRAPH-2F976 +<U0002F976> <U7F7A> +% CJK COMPATIBILITY IDEOGRAPH-2F977 +<U0002F977> <U0002633E> +% CJK COMPATIBILITY IDEOGRAPH-2F978 +<U0002F978> <U7F95> +% CJK COMPATIBILITY IDEOGRAPH-2F979 +<U0002F979> <U7FFA> +% CJK COMPATIBILITY IDEOGRAPH-2F97A +<U0002F97A> <U8005> +% CJK COMPATIBILITY IDEOGRAPH-2F97B +<U0002F97B> <U000264DA> +% CJK COMPATIBILITY IDEOGRAPH-2F97C +<U0002F97C> <U00026523> +% CJK COMPATIBILITY IDEOGRAPH-2F97D +<U0002F97D> <U8060> +% CJK COMPATIBILITY IDEOGRAPH-2F97E +<U0002F97E> <U000265A8> +% CJK COMPATIBILITY IDEOGRAPH-2F97F +<U0002F97F> <U8070> +% CJK COMPATIBILITY IDEOGRAPH-2F980 +<U0002F980> <U0002335F> +% CJK COMPATIBILITY IDEOGRAPH-2F981 +<U0002F981> <U43D5> +% CJK COMPATIBILITY IDEOGRAPH-2F982 +<U0002F982> <U80B2> +% CJK COMPATIBILITY IDEOGRAPH-2F983 +<U0002F983> <U8103> +% CJK COMPATIBILITY IDEOGRAPH-2F984 +<U0002F984> <U440B> +% CJK COMPATIBILITY IDEOGRAPH-2F985 +<U0002F985> <U813E> +% CJK COMPATIBILITY IDEOGRAPH-2F986 +<U0002F986> <U5AB5> +% CJK COMPATIBILITY IDEOGRAPH-2F987 +<U0002F987> <U000267A7> +% CJK COMPATIBILITY IDEOGRAPH-2F988 +<U0002F988> <U000267B5> +% CJK COMPATIBILITY IDEOGRAPH-2F989 +<U0002F989> <U00023393> +% CJK COMPATIBILITY IDEOGRAPH-2F98A +<U0002F98A> <U0002339C> +% CJK COMPATIBILITY IDEOGRAPH-2F98B +<U0002F98B> <U8201> +% CJK COMPATIBILITY IDEOGRAPH-2F98C +<U0002F98C> <U8204> +% CJK COMPATIBILITY IDEOGRAPH-2F98D +<U0002F98D> <U8F9E> +% CJK COMPATIBILITY IDEOGRAPH-2F98E +<U0002F98E> <U446B> +% CJK COMPATIBILITY IDEOGRAPH-2F98F +<U0002F98F> <U8291> +% CJK COMPATIBILITY IDEOGRAPH-2F990 +<U0002F990> <U828B> +% CJK COMPATIBILITY IDEOGRAPH-2F991 +<U0002F991> <U829D> +% CJK COMPATIBILITY IDEOGRAPH-2F992 +<U0002F992> <U52B3> +% CJK COMPATIBILITY IDEOGRAPH-2F993 +<U0002F993> <U82B1> +% CJK COMPATIBILITY IDEOGRAPH-2F994 +<U0002F994> <U82B3> +% CJK COMPATIBILITY IDEOGRAPH-2F995 +<U0002F995> <U82BD> +% CJK COMPATIBILITY IDEOGRAPH-2F996 +<U0002F996> <U82E6> +% CJK COMPATIBILITY IDEOGRAPH-2F997 +<U0002F997> <U00026B3C> +% CJK COMPATIBILITY IDEOGRAPH-2F998 +<U0002F998> <U82E5> +% CJK COMPATIBILITY IDEOGRAPH-2F999 +<U0002F999> <U831D> +% CJK COMPATIBILITY IDEOGRAPH-2F99A +<U0002F99A> <U8363> +% CJK COMPATIBILITY IDEOGRAPH-2F99B +<U0002F99B> <U83AD> +% CJK COMPATIBILITY IDEOGRAPH-2F99C +<U0002F99C> <U8323> +% CJK COMPATIBILITY IDEOGRAPH-2F99D +<U0002F99D> <U83BD> +% CJK COMPATIBILITY IDEOGRAPH-2F99E +<U0002F99E> <U83E7> +% CJK COMPATIBILITY IDEOGRAPH-2F99F +<U0002F99F> <U8457> +% CJK COMPATIBILITY IDEOGRAPH-2F9A0 +<U0002F9A0> <U8353> +% CJK COMPATIBILITY IDEOGRAPH-2F9A1 +<U0002F9A1> <U83CA> +% CJK COMPATIBILITY IDEOGRAPH-2F9A2 +<U0002F9A2> <U83CC> +% CJK COMPATIBILITY IDEOGRAPH-2F9A3 +<U0002F9A3> <U83DC> +% CJK COMPATIBILITY IDEOGRAPH-2F9A4 +<U0002F9A4> <U00026C36> +% CJK COMPATIBILITY IDEOGRAPH-2F9A5 +<U0002F9A5> <U00026D6B> +% CJK COMPATIBILITY IDEOGRAPH-2F9A6 +<U0002F9A6> <U00026CD5> +% CJK COMPATIBILITY IDEOGRAPH-2F9A7 +<U0002F9A7> <U452B> +% CJK COMPATIBILITY IDEOGRAPH-2F9A8 +<U0002F9A8> <U84F1> +% CJK COMPATIBILITY IDEOGRAPH-2F9A9 +<U0002F9A9> <U84F3> +% CJK COMPATIBILITY IDEOGRAPH-2F9AA +<U0002F9AA> <U8516> +% CJK COMPATIBILITY IDEOGRAPH-2F9AB +<U0002F9AB> <U000273CA> +% CJK COMPATIBILITY IDEOGRAPH-2F9AC +<U0002F9AC> <U8564> +% CJK COMPATIBILITY IDEOGRAPH-2F9AD +<U0002F9AD> <U00026F2C> +% CJK COMPATIBILITY IDEOGRAPH-2F9AE +<U0002F9AE> <U455D> +% CJK COMPATIBILITY IDEOGRAPH-2F9AF +<U0002F9AF> <U4561> +% CJK COMPATIBILITY IDEOGRAPH-2F9B0 +<U0002F9B0> <U00026FB1> +% CJK COMPATIBILITY IDEOGRAPH-2F9B1 +<U0002F9B1> <U000270D2> +% CJK COMPATIBILITY IDEOGRAPH-2F9B2 +<U0002F9B2> <U456B> +% CJK COMPATIBILITY IDEOGRAPH-2F9B3 +<U0002F9B3> <U8650> +% CJK COMPATIBILITY IDEOGRAPH-2F9B4 +<U0002F9B4> <U865C> +% CJK COMPATIBILITY IDEOGRAPH-2F9B5 +<U0002F9B5> <U8667> +% CJK COMPATIBILITY IDEOGRAPH-2F9B6 +<U0002F9B6> <U8669> +% CJK COMPATIBILITY IDEOGRAPH-2F9B7 +<U0002F9B7> <U86A9> +% CJK COMPATIBILITY IDEOGRAPH-2F9B8 +<U0002F9B8> <U8688> +% CJK COMPATIBILITY IDEOGRAPH-2F9B9 +<U0002F9B9> <U870E> +% CJK COMPATIBILITY IDEOGRAPH-2F9BA +<U0002F9BA> <U86E2> +% CJK COMPATIBILITY IDEOGRAPH-2F9BB +<U0002F9BB> <U8779> +% CJK COMPATIBILITY IDEOGRAPH-2F9BC +<U0002F9BC> <U8728> +% CJK COMPATIBILITY IDEOGRAPH-2F9BD +<U0002F9BD> <U876B> +% CJK COMPATIBILITY IDEOGRAPH-2F9BE +<U0002F9BE> <U8786> +% CJK COMPATIBILITY IDEOGRAPH-2F9BF +<U0002F9BF> <U4D57> +% CJK COMPATIBILITY IDEOGRAPH-2F9C0 +<U0002F9C0> <U87E1> +% CJK COMPATIBILITY IDEOGRAPH-2F9C1 +<U0002F9C1> <U8801> +% CJK COMPATIBILITY IDEOGRAPH-2F9C2 +<U0002F9C2> <U45F9> +% CJK COMPATIBILITY IDEOGRAPH-2F9C3 +<U0002F9C3> <U8860> +% CJK COMPATIBILITY IDEOGRAPH-2F9C4 +<U0002F9C4> <U8863> +% CJK COMPATIBILITY IDEOGRAPH-2F9C5 +<U0002F9C5> <U00027667> +% CJK COMPATIBILITY IDEOGRAPH-2F9C6 +<U0002F9C6> <U88D7> +% CJK COMPATIBILITY IDEOGRAPH-2F9C7 +<U0002F9C7> <U88DE> +% CJK COMPATIBILITY IDEOGRAPH-2F9C8 +<U0002F9C8> <U4635> +% CJK COMPATIBILITY IDEOGRAPH-2F9C9 +<U0002F9C9> <U88FA> +% CJK COMPATIBILITY IDEOGRAPH-2F9CA +<U0002F9CA> <U34BB> +% CJK COMPATIBILITY IDEOGRAPH-2F9CB +<U0002F9CB> <U000278AE> +% CJK COMPATIBILITY IDEOGRAPH-2F9CC +<U0002F9CC> <U00027966> +% CJK COMPATIBILITY IDEOGRAPH-2F9CD +<U0002F9CD> <U46BE> +% CJK COMPATIBILITY IDEOGRAPH-2F9CE +<U0002F9CE> <U46C7> +% CJK COMPATIBILITY IDEOGRAPH-2F9CF +<U0002F9CF> <U8AA0> +% CJK COMPATIBILITY IDEOGRAPH-2F9D0 +<U0002F9D0> <U8AED> +% CJK COMPATIBILITY IDEOGRAPH-2F9D1 +<U0002F9D1> <U8B8A> +% CJK COMPATIBILITY IDEOGRAPH-2F9D2 +<U0002F9D2> <U8C55> +% CJK COMPATIBILITY IDEOGRAPH-2F9D3 +<U0002F9D3> <U00027CA8> +% CJK COMPATIBILITY IDEOGRAPH-2F9D4 +<U0002F9D4> <U8CAB> +% CJK COMPATIBILITY IDEOGRAPH-2F9D5 +<U0002F9D5> <U8CC1> +% CJK COMPATIBILITY IDEOGRAPH-2F9D6 +<U0002F9D6> <U8D1B> +% CJK COMPATIBILITY IDEOGRAPH-2F9D7 +<U0002F9D7> <U8D77> +% CJK COMPATIBILITY IDEOGRAPH-2F9D8 +<U0002F9D8> <U00027F2F> +% CJK COMPATIBILITY IDEOGRAPH-2F9D9 +<U0002F9D9> <U00020804> +% CJK COMPATIBILITY IDEOGRAPH-2F9DA +<U0002F9DA> <U8DCB> +% CJK COMPATIBILITY IDEOGRAPH-2F9DB +<U0002F9DB> <U8DBC> +% CJK COMPATIBILITY IDEOGRAPH-2F9DC +<U0002F9DC> <U8DF0> +% CJK COMPATIBILITY IDEOGRAPH-2F9DD +<U0002F9DD> <U000208DE> +% CJK COMPATIBILITY IDEOGRAPH-2F9DE +<U0002F9DE> <U8ED4> +% CJK COMPATIBILITY IDEOGRAPH-2F9DF +<U0002F9DF> <U8F38> +% CJK COMPATIBILITY IDEOGRAPH-2F9E0 +<U0002F9E0> <U000285D2> +% CJK COMPATIBILITY IDEOGRAPH-2F9E1 +<U0002F9E1> <U000285ED> +% CJK COMPATIBILITY IDEOGRAPH-2F9E2 +<U0002F9E2> <U9094> +% CJK COMPATIBILITY IDEOGRAPH-2F9E3 +<U0002F9E3> <U90F1> +% CJK COMPATIBILITY IDEOGRAPH-2F9E4 +<U0002F9E4> <U9111> +% CJK COMPATIBILITY IDEOGRAPH-2F9E5 +<U0002F9E5> <U0002872E> +% CJK COMPATIBILITY IDEOGRAPH-2F9E6 +<U0002F9E6> <U911B> +% CJK COMPATIBILITY IDEOGRAPH-2F9E7 +<U0002F9E7> <U9238> +% CJK COMPATIBILITY IDEOGRAPH-2F9E8 +<U0002F9E8> <U92D7> +% CJK COMPATIBILITY IDEOGRAPH-2F9E9 +<U0002F9E9> <U92D8> +% CJK COMPATIBILITY IDEOGRAPH-2F9EA +<U0002F9EA> <U927C> +% CJK COMPATIBILITY IDEOGRAPH-2F9EB +<U0002F9EB> <U93F9> +% CJK COMPATIBILITY IDEOGRAPH-2F9EC +<U0002F9EC> <U9415> +% CJK COMPATIBILITY IDEOGRAPH-2F9ED +<U0002F9ED> <U00028BFA> +% CJK COMPATIBILITY IDEOGRAPH-2F9EE +<U0002F9EE> <U958B> +% CJK COMPATIBILITY IDEOGRAPH-2F9EF +<U0002F9EF> <U4995> +% CJK COMPATIBILITY IDEOGRAPH-2F9F0 +<U0002F9F0> <U95B7> +% CJK COMPATIBILITY IDEOGRAPH-2F9F1 +<U0002F9F1> <U00028D77> +% CJK COMPATIBILITY IDEOGRAPH-2F9F2 +<U0002F9F2> <U49E6> +% CJK COMPATIBILITY IDEOGRAPH-2F9F3 +<U0002F9F3> <U96C3> +% CJK COMPATIBILITY IDEOGRAPH-2F9F4 +<U0002F9F4> <U5DB2> +% CJK COMPATIBILITY IDEOGRAPH-2F9F5 +<U0002F9F5> <U9723> +% CJK COMPATIBILITY IDEOGRAPH-2F9F6 +<U0002F9F6> <U00029145> +% CJK COMPATIBILITY IDEOGRAPH-2F9F7 +<U0002F9F7> <U0002921A> +% CJK COMPATIBILITY IDEOGRAPH-2F9F8 +<U0002F9F8> <U4A6E> +% CJK COMPATIBILITY IDEOGRAPH-2F9F9 +<U0002F9F9> <U4A76> +% CJK COMPATIBILITY IDEOGRAPH-2F9FA +<U0002F9FA> <U97E0> +% CJK COMPATIBILITY IDEOGRAPH-2F9FB +<U0002F9FB> <U0002940A> +% CJK COMPATIBILITY IDEOGRAPH-2F9FC +<U0002F9FC> <U4AB2> +% CJK COMPATIBILITY IDEOGRAPH-2F9FD +<U0002F9FD> <U00029496> +% CJK COMPATIBILITY IDEOGRAPH-2F9FE +<U0002F9FE> <U980B> +% CJK COMPATIBILITY IDEOGRAPH-2F9FF +<U0002F9FF> <U980B> +% CJK COMPATIBILITY IDEOGRAPH-2FA00 +<U0002FA00> <U9829> +% CJK COMPATIBILITY IDEOGRAPH-2FA01 +<U0002FA01> <U000295B6> +% CJK COMPATIBILITY IDEOGRAPH-2FA02 +<U0002FA02> <U98E2> +% CJK COMPATIBILITY IDEOGRAPH-2FA03 +<U0002FA03> <U4B33> +% CJK COMPATIBILITY IDEOGRAPH-2FA04 +<U0002FA04> <U9929> +% CJK COMPATIBILITY IDEOGRAPH-2FA05 +<U0002FA05> <U99A7> +% CJK COMPATIBILITY IDEOGRAPH-2FA06 +<U0002FA06> <U99C2> +% CJK COMPATIBILITY IDEOGRAPH-2FA07 +<U0002FA07> <U99FE> +% CJK COMPATIBILITY IDEOGRAPH-2FA08 +<U0002FA08> <U4BCE> +% CJK COMPATIBILITY IDEOGRAPH-2FA09 +<U0002FA09> <U00029B30> +% CJK COMPATIBILITY IDEOGRAPH-2FA0A +<U0002FA0A> <U9B12> +% CJK COMPATIBILITY IDEOGRAPH-2FA0B +<U0002FA0B> <U9C40> +% CJK COMPATIBILITY IDEOGRAPH-2FA0C +<U0002FA0C> <U9CFD> +% CJK COMPATIBILITY IDEOGRAPH-2FA0D +<U0002FA0D> <U4CCE> +% CJK COMPATIBILITY IDEOGRAPH-2FA0E +<U0002FA0E> <U4CED> +% CJK COMPATIBILITY IDEOGRAPH-2FA0F +<U0002FA0F> <U9D67> +% CJK COMPATIBILITY IDEOGRAPH-2FA10 +<U0002FA10> <U0002A0CE> +% CJK COMPATIBILITY IDEOGRAPH-2FA11 +<U0002FA11> <U4CF8> +% CJK COMPATIBILITY IDEOGRAPH-2FA12 +<U0002FA12> <U0002A105> +% CJK COMPATIBILITY IDEOGRAPH-2FA13 +<U0002FA13> <U0002A20E> +% CJK COMPATIBILITY IDEOGRAPH-2FA14 +<U0002FA14> <U0002A291> +% CJK COMPATIBILITY IDEOGRAPH-2FA15 +<U0002FA15> <U9EBB> +% CJK COMPATIBILITY IDEOGRAPH-2FA16 +<U0002FA16> <U4D56> +% CJK COMPATIBILITY IDEOGRAPH-2FA17 +<U0002FA17> <U9EF9> +% CJK COMPATIBILITY IDEOGRAPH-2FA18 +<U0002FA18> <U9EFE> +% CJK COMPATIBILITY IDEOGRAPH-2FA19 +<U0002FA19> <U9F05> +% CJK COMPATIBILITY IDEOGRAPH-2FA1A +<U0002FA1A> <U9F0F> +% CJK COMPATIBILITY IDEOGRAPH-2FA1B +<U0002FA1B> <U9F16> +% CJK COMPATIBILITY IDEOGRAPH-2FA1C +<U0002FA1C> <U9F3B> +% CJK COMPATIBILITY IDEOGRAPH-2FA1D +<U0002FA1D> <U0002A600> translit_end |